1 00:00:06,580 --> 00:00:08,620 I hopefully were able to see it from the. 2 00:00:11,880 --> 00:00:13,110 Yes, yes, yes, go ahead. 3 00:00:14,130 --> 00:00:19,560 OK, so is that what we see on the screen, in the front a little bit? 4 00:00:21,130 --> 00:00:22,690 We will continue to what this thing. 5 00:00:26,080 --> 00:00:36,640 We wanted to collect the data from from our library members, Tigo, which is this table here, and 6 00:00:36,670 --> 00:00:37,600 you open that. 7 00:00:39,070 --> 00:00:41,410 And to more liberal member. 8 00:00:46,370 --> 00:00:47,720 Literally by. 9 00:00:54,830 --> 00:00:58,550 Yeah, so I remember being on this. 10 00:01:09,540 --> 00:01:15,090 And we needed to we needed to finish this detail with an API and maybe have it somewhere in the front 11 00:01:15,090 --> 00:01:15,370 end. 12 00:01:16,140 --> 00:01:22,830 So what we did yesterday, just to recap quickly here, we wrote our function first off, after creating 13 00:01:23,570 --> 00:01:31,110 the EPA file, a peer to peer file in the backend, we wrote this function, which we give the name, 14 00:01:31,110 --> 00:01:32,130 get all members. 15 00:01:32,910 --> 00:01:41,240 Then we we do this query that's supposed to fetch to select all the items from the top liberal members 16 00:01:41,250 --> 00:01:46,140 depot and then store it in a variable called members and they return it. 17 00:01:46,810 --> 00:01:49,710 And then what we did, we wrote we do the script. 18 00:01:50,930 --> 00:01:58,310 On this file, which is supposed to be on button to remember, are doing the buttons, it's supposed 19 00:01:58,310 --> 00:02:04,470 to run the up it would call for because this is a way of calling it like an Ajax call to the back end. 20 00:02:05,120 --> 00:02:11,150 So what this does is that while you are still on the front end, it sends a request to the database. 21 00:02:12,530 --> 00:02:16,180 In this case, it sends a request to this of this other function here. 22 00:02:16,800 --> 00:02:19,220 This other function runs and it retains some values. 23 00:02:19,520 --> 00:02:27,200 And then it returns to this item here without having to to reload the screen so you don't have to redo 24 00:02:27,200 --> 00:02:28,730 the screen to do a rapid call. 25 00:02:29,690 --> 00:02:35,630 So and then what you are doing is here you just have a callback and then we have a console along with 26 00:02:35,630 --> 00:02:37,460 the results that came from our function. 27 00:02:38,150 --> 00:02:46,850 So we are exploring things to do with the Rapido to at least we wanted to test with the allow just anybody 28 00:02:46,850 --> 00:02:47,130 here. 29 00:02:47,810 --> 00:02:52,850 We also wanted to do this without this for a bit or at least and we also wanted to test without this. 30 00:02:53,480 --> 00:02:54,790 So you're going to do that now. 31 00:02:55,130 --> 00:03:00,800 But the first thing we're going to do before we go to postwoman is to test it on our browser and see 32 00:03:00,800 --> 00:03:02,730 whether we have those results coming. 33 00:03:03,380 --> 00:03:05,750 So let me go to the library. 34 00:03:07,520 --> 00:03:15,910 At list, and I'm supposed to see the three when I click on the second button, so I open my console. 35 00:03:17,110 --> 00:03:19,000 To see where they have I will have them. 36 00:03:20,630 --> 00:03:23,330 And then I'll click on this again button. 37 00:03:24,470 --> 00:03:33,050 And here you can see that we have our message, is that enough or do they increase it a little bit like 38 00:03:33,060 --> 00:03:33,310 that? 39 00:03:34,990 --> 00:03:36,500 But this area has come back. 40 00:03:36,520 --> 00:03:44,770 It's an area with three items, three objects, and each object has the details, the details of everything 41 00:03:44,770 --> 00:03:45,820 that is in the form. 42 00:03:46,540 --> 00:03:48,270 And the is why we are getting this. 43 00:03:48,280 --> 00:03:55,630 Everything in that in that form is because we we we instructed our our our our query to select everything 44 00:03:55,630 --> 00:03:55,900 here. 45 00:03:56,440 --> 00:04:04,870 So if we for any reason, we wanted to limit this maybe to only maybe full name and maybe e-mail address, 46 00:04:05,440 --> 00:04:13,270 what we would have done here is to put the phone in there and maybe email the email address like that. 47 00:04:13,660 --> 00:04:16,090 Just confirm its e-mail address. 48 00:04:17,680 --> 00:04:25,660 What are expecting that could do is to get us only only the data, but only without these Christian 49 00:04:25,870 --> 00:04:28,160 status, with only the e-mail address and the full name. 50 00:04:28,840 --> 00:04:33,100 So if we if we compress this, clear the console, go to the button. 51 00:04:34,210 --> 00:04:40,840 And click on to we have on our message here with three items, and you have noted this, the process 52 00:04:40,840 --> 00:04:42,000 not including at all. 53 00:04:42,760 --> 00:04:45,520 And now here what we have, we still have object. 54 00:04:45,520 --> 00:04:48,570 But this day we only have our email address in the full name. 55 00:04:48,820 --> 00:04:51,940 So this is sending this request to the database. 56 00:04:52,960 --> 00:04:55,600 It is fitting, depending on what we have. 57 00:04:56,050 --> 00:05:03,710 We have instructed it on our on our call here and then it is returning that data to us on the browser. 58 00:05:03,880 --> 00:05:10,270 So now we decided to be able to defer to the data and to manipulativeness from here or do whatever you 59 00:05:10,270 --> 00:05:11,210 want to do with the data. 60 00:05:11,240 --> 00:05:12,460 It's coming from the database. 61 00:05:12,940 --> 00:05:19,750 So from your front end, you need to maybe go to the database, fetch some data and get it back to the 62 00:05:19,750 --> 00:05:21,910 user without having to reload the browser. 63 00:05:22,300 --> 00:05:23,310 This is how you do it. 64 00:05:23,410 --> 00:05:23,980 You write that. 65 00:05:23,980 --> 00:05:25,240 You write for people. 66 00:05:25,600 --> 00:05:27,440 Then you have a method, remember? 67 00:05:27,460 --> 00:05:31,260 By the way, I was explaining how this one is, how, you know, the output is part. 68 00:05:31,750 --> 00:05:32,970 So what is happening here? 69 00:05:33,550 --> 00:05:42,700 If you look at your file system on this side, you have here you have you have the app and then you 70 00:05:42,700 --> 00:05:51,090 have your module and then you have DOCTYPE and then liberal member and then you have a file called Apple 71 00:05:51,220 --> 00:05:51,750 Pie. 72 00:05:52,150 --> 00:05:57,320 And then inside of that file, codependent pie, you have a function called Get All Members. 73 00:05:57,910 --> 00:06:02,590 So this is how you accessed this library member is the name of the app. 74 00:06:03,360 --> 00:06:05,120 The other one is the name of the module. 75 00:06:05,140 --> 00:06:11,100 So this one in this case seems like you are just getting into directories here and then you have a doctor, 76 00:06:11,390 --> 00:06:15,380 doctor, because what comes next here and then from that library member? 77 00:06:15,430 --> 00:06:16,290 That's what we have. 78 00:06:16,660 --> 00:06:22,030 And then inside of that, we have a file called Episode here, and that is this file. 79 00:06:22,420 --> 00:06:26,080 And then inside of this file, we have our function called Get All Members. 80 00:06:26,110 --> 00:06:27,400 So this is what we call. 81 00:06:28,030 --> 00:06:30,850 So if you wanted to maybe have another function. 82 00:06:32,080 --> 00:06:41,500 That will only mitigate members or get a member by I.D. if you get you see something like get member, 83 00:06:42,440 --> 00:06:47,440 something like that, and then when it's going to take a parameter like the IB and then you're going 84 00:06:47,440 --> 00:06:48,370 to do something here. 85 00:06:48,970 --> 00:06:54,220 So when if you need to address this, what you want to do now here in this case is that we are going 86 00:06:54,220 --> 00:06:55,120 to put this one. 87 00:06:55,640 --> 00:06:55,960 Yeah. 88 00:06:56,830 --> 00:06:57,580 And that is it. 89 00:06:59,340 --> 00:07:00,080 Acquistion, please. 90 00:07:05,520 --> 00:07:14,250 So when you do update the Python code, it gets rebuilt without having to restart the bench, you see 91 00:07:14,250 --> 00:07:15,570 your change right away. 92 00:07:16,830 --> 00:07:22,340 When you do when you when you write, you mean when you write what, when you write the code on the 93 00:07:22,350 --> 00:07:23,010 script here. 94 00:07:24,520 --> 00:07:32,770 Now, in Python, in Britain and sometimes in Europe, sometimes it appears without having to resort 95 00:07:32,920 --> 00:07:36,490 to restart Benge some of the things of the field and you have to restart business. 96 00:07:37,090 --> 00:07:42,990 But it is advised that every time you urinate, you are put on court, just is not start to be safe. 97 00:07:45,770 --> 00:07:53,060 OK, yeah, you could you could you repeat the repeated once again Karani? 98 00:07:55,220 --> 00:07:58,390 What I have, what I have demonstrated, yeah, yeah. 99 00:07:59,330 --> 00:08:02,420 All right, so let me start here. 100 00:08:03,530 --> 00:08:06,800 So what we did here, we we created this python file. 101 00:08:07,900 --> 00:08:13,990 Inside of a library library you want you must not read it here, by the way, you can read it anywhere. 102 00:08:14,290 --> 00:08:21,460 You can even decide to go outside in your app and just create a file here, maybe if you want to use 103 00:08:21,460 --> 00:08:24,210 it for all your apps or your custom apps. 104 00:08:24,580 --> 00:08:30,900 But in our case, we went we drilled down to an individual tape and wrote the EPA file here. 105 00:08:31,660 --> 00:08:39,070 Then in the EPA file, we the first thing to do here is to import frappé so that really you are able 106 00:08:39,070 --> 00:08:40,420 to get all these functions. 107 00:08:41,290 --> 00:08:46,910 And then we came here to defend our python function, which we call to get all members. 108 00:08:47,410 --> 00:08:51,130 And then we wrote this this query, this query. 109 00:08:51,130 --> 00:08:55,060 You can find it in the proper documentation, how they write their queries. 110 00:08:55,720 --> 00:09:02,500 And then we this way returns all the members, the first name and the last name of all the members in 111 00:09:02,500 --> 00:09:06,300 there in the tub to member Tembo. 112 00:09:06,730 --> 00:09:10,600 Then it is stored in a variable called members and then it is retained. 113 00:09:11,320 --> 00:09:13,600 So from a script on the front end. 114 00:09:14,830 --> 00:09:21,260 We wrote when we were doing the batons, our second baton is calling, is making a proper call. 115 00:09:21,580 --> 00:09:25,270 So this is trumpet call and then we are giving it a method. 116 00:09:25,510 --> 00:09:34,050 And then this method is link like a part of our path to our function here. 117 00:09:35,630 --> 00:09:43,430 So this this function, this this this method that is being called here is like adding to our python 118 00:09:43,430 --> 00:09:50,180 function and then this is just a JavaScript callback, which which which, of course, can be used to 119 00:09:50,180 --> 00:09:53,150 to do to maybe print out the data that you have written. 120 00:09:53,420 --> 00:09:59,840 So these are these are can have anything you can you can give this in any variable name is any any variable 121 00:09:59,840 --> 00:10:00,530 you can call it. 122 00:10:00,690 --> 00:10:01,460 You can call it. 123 00:10:01,460 --> 00:10:05,750 Maybe in this case we can call it mambas because it has all our members. 124 00:10:06,080 --> 00:10:08,120 And then here you are just logging. 125 00:10:08,120 --> 00:10:08,620 They are. 126 00:10:08,930 --> 00:10:15,830 So if we need that maybe two to output this data on our application or use it for some, we maybe we 127 00:10:15,830 --> 00:10:23,270 needed we we had something on our own, our up here that maybe when I use that did something, then 128 00:10:23,270 --> 00:10:29,210 the system is supposed to go back in to the data that is related to that and bring it to the front end. 129 00:10:29,510 --> 00:10:32,870 Then we can do that without having to reload the browser. 130 00:10:33,290 --> 00:10:38,810 Most of the Python code, when you write that, when you have like now this most of the functions that 131 00:10:38,810 --> 00:10:45,080 are here in the Python files before the array and you have to reload the whole browser, but the front 132 00:10:45,230 --> 00:10:53,420 don't call enables you to trigger functions which are going to call your database or maybe the function 133 00:10:53,420 --> 00:10:59,660 into a python file, query your database and return the results to the user without necessarily loading 134 00:10:59,660 --> 00:11:02,390 the browser, just like Ajax does it. 135 00:11:02,870 --> 00:11:04,160 So that is what you have done. 136 00:11:04,430 --> 00:11:09,230 And we have output are we are we are doing this is that we have logged that in. 137 00:11:09,230 --> 00:11:12,500 That is what is being logged here when you click on that button. 138 00:11:15,000 --> 00:11:16,050 I'm actually a.. 139 00:11:17,550 --> 00:11:18,840 Yeah, perfectly clear. 140 00:11:18,870 --> 00:11:19,300 Thank you. 141 00:11:19,920 --> 00:11:20,680 Thank you so much. 142 00:11:21,540 --> 00:11:22,710 You know what is without question. 143 00:11:27,770 --> 00:11:28,730 OK, running now. 144 00:11:30,110 --> 00:11:37,910 Yes, ma'am, we know what time this variable is in the what is the time of our. 145 00:11:39,840 --> 00:11:47,670 Ah, ah, ah ah, can have anything in JavaScript is not strongly typed out, can be a string of this 146 00:11:47,670 --> 00:11:53,190 but this one is and is an what this is written is an idea because look look at this. 147 00:11:53,200 --> 00:11:54,200 Let me go back here. 148 00:11:57,050 --> 00:11:57,290 Yeah. 149 00:11:57,300 --> 00:12:02,180 We have our message is actually telling you this one is an array with the three items. 150 00:12:02,730 --> 00:12:07,890 So if you open it and even even before you open, you can see here we have the angle brackets for the 151 00:12:07,890 --> 00:12:08,340 array. 152 00:12:08,790 --> 00:12:11,790 And then inside of this array we have three objects. 153 00:12:12,150 --> 00:12:21,390 So each object is is is is each object contains the data of each user or each library member. 154 00:12:21,390 --> 00:12:22,100 For this matter. 155 00:12:22,500 --> 00:12:24,270 The first member is the duplicate. 156 00:12:24,270 --> 00:12:26,280 Only the second one is mamita. 157 00:12:26,310 --> 00:12:31,860 That one is Nazeer and they are they are full name Miami today. 158 00:12:31,890 --> 00:12:37,110 And so we, we can look make a loop on the example if we have. 159 00:12:39,030 --> 00:12:39,510 So yeah. 160 00:12:39,510 --> 00:12:44,280 You just one correctly as you just write a follow up here and you can loop. 161 00:12:45,980 --> 00:12:55,970 OK, yeah, you can look it up and you look through them, but the object return is as a Prop. eight 162 00:12:56,000 --> 00:13:02,170 message, which contains what has been returned by the by your method. 163 00:13:02,180 --> 00:13:02,520 Right. 164 00:13:02,540 --> 00:13:04,970 You always have that message property. 165 00:13:06,140 --> 00:13:06,530 Yeah. 166 00:13:06,530 --> 00:13:06,830 Yeah. 167 00:13:07,910 --> 00:13:09,170 You can remove it. 168 00:13:10,040 --> 00:13:13,940 We are going to see what is going to happen when you don't when you don't supply. 169 00:13:14,360 --> 00:13:16,610 This is the dictionary. 170 00:13:17,300 --> 00:13:20,330 When you do not convert this thing to a dictionary, you are going to see it through. 171 00:13:20,330 --> 00:13:23,840 Postman is going to display it better when you don't apply this. 172 00:13:23,840 --> 00:13:25,000 That message is not there. 173 00:13:25,490 --> 00:13:31,640 But how does it it puts this thing in in this message. 174 00:13:31,820 --> 00:13:36,740 It returns it as a message and then the message has everything else inside it. 175 00:13:40,020 --> 00:13:46,150 If not, nothing greater until you take no nothing. 176 00:13:47,220 --> 00:13:55,710 Yeah, if there is no your school is empty or so OK. 177 00:13:56,120 --> 00:13:58,650 OK, I think we are going to handle that next. 178 00:13:58,680 --> 00:14:04,230 So I'm going to make sure I answer that in this in this in the next within a few minutes. 179 00:14:05,100 --> 00:14:11,160 I mean, you put a condition after being called back, yet if there is data, you do this and this. 180 00:14:11,170 --> 00:14:13,720 If there is no data, follow you. 181 00:14:15,150 --> 00:14:15,540 Oh yeah. 182 00:14:15,540 --> 00:14:15,810 Yeah. 183 00:14:15,810 --> 00:14:18,470 You can put this this is this is basically devastating. 184 00:14:18,490 --> 00:14:28,900 So if you do maybe conditions here so you can see if ah maybe do that or here do something else. 185 00:14:29,730 --> 00:14:39,210 So you can say something like OK, if there is otherwise if there is just no way to know. 186 00:14:40,530 --> 00:14:40,920 Yeah. 187 00:14:40,920 --> 00:14:41,810 Something like that. 188 00:14:44,330 --> 00:14:46,370 I would be something we can do the. 189 00:14:49,520 --> 00:14:59,060 Yeah, yeah, we can see this, so now assume before you go to post you, you're going to be doing this 190 00:14:59,060 --> 00:14:59,810 with the postman. 191 00:15:00,560 --> 00:15:06,970 I assume you wanted to put that on this on here like you want it to fetch all the members. 192 00:15:07,760 --> 00:15:09,470 Or maybe we call this function. 193 00:15:09,710 --> 00:15:12,920 We want to fetch our member with an ID, for instance. 194 00:15:13,250 --> 00:15:19,780 This is going to work best with the postman because you can pass I.D. so we can see this man of the 195 00:15:20,050 --> 00:15:22,820 details is fullName with us. 196 00:15:22,820 --> 00:15:24,560 Collect everything for this member. 197 00:15:24,740 --> 00:15:29,300 So collect everything from that and then we can help up on this. 198 00:15:29,300 --> 00:15:31,400 On here we can see where. 199 00:15:33,250 --> 00:15:40,330 Well, they use as a punishment for the purpose of this testing, they're just going to use what, Fotini? 200 00:15:41,410 --> 00:15:42,760 They just do the name. 201 00:15:48,920 --> 00:15:51,450 So let's just do a. 202 00:15:53,760 --> 00:16:04,030 We are naem where name equals, and then here we can we can pass, we can pass our formatted string 203 00:16:04,080 --> 00:16:06,480 or or we can. 204 00:16:06,510 --> 00:16:08,490 This is going to is not going to work. 205 00:16:09,420 --> 00:16:11,550 We are named equals something like. 206 00:16:12,810 --> 00:16:14,690 Let me get the first one. 207 00:16:15,330 --> 00:16:15,840 This one. 208 00:16:18,410 --> 00:16:27,140 And I put it here when I call this function from the front end and I need to return this return. 209 00:16:30,200 --> 00:16:31,370 Remember details? 210 00:16:32,900 --> 00:16:37,070 Then I need to I need to call this and remember, we need to increase our function. 211 00:16:38,780 --> 00:16:42,180 May maybe for the rest of this, when we remove that so that you don't get an error. 212 00:16:42,500 --> 00:16:48,320 We are going to return the idea when we are getting it from postwoman because we can pass parameters. 213 00:16:49,640 --> 00:16:53,180 And we can try that. 214 00:16:55,450 --> 00:17:02,920 Get remember, go back to this to get member here and then. 215 00:17:04,130 --> 00:17:06,680 From here, we can reload. 216 00:17:09,160 --> 00:17:09,910 We are this. 217 00:17:12,330 --> 00:17:17,550 And then we get our bottom action button to. 218 00:17:19,820 --> 00:17:28,510 We have an analysis, Maria Déby, Syntax, Nghia, this one, so we have an error here. 219 00:17:30,370 --> 00:17:34,810 We are neame, I think this is supposed to be like this. 220 00:17:36,370 --> 00:17:37,150 I'm not sure. 221 00:17:40,830 --> 00:17:41,900 We need. 222 00:17:42,000 --> 00:17:44,490 I think it's your double equals sign. 223 00:17:44,550 --> 00:17:46,580 You don't have to double equal. 224 00:17:46,770 --> 00:17:47,760 Oh, yeah. 225 00:17:47,810 --> 00:17:48,290 Huh. 226 00:17:50,850 --> 00:17:52,620 Kill, kill, kill, kill. 227 00:17:57,460 --> 00:17:59,220 Something looks wrong here. 228 00:18:01,260 --> 00:18:03,720 Let's see let's see what happens when we have that. 229 00:18:08,940 --> 00:18:16,860 Yeah, let's see what happens when we have not to reload, and this is how this is, these are Goodwill's 230 00:18:16,860 --> 00:18:17,840 reporting errors. 231 00:18:19,150 --> 00:18:25,720 Jake, in the years we have we have our we have our here, but this idea has nothing. 232 00:18:27,550 --> 00:18:32,710 So mean, this is an example of what you are seeing this this is our identity has nothing here. 233 00:18:37,030 --> 00:18:38,150 I really do nothing. 234 00:18:38,180 --> 00:18:41,000 OK, so we are named EQUASS. 235 00:18:42,090 --> 00:18:42,510 This. 236 00:18:44,180 --> 00:18:45,770 OK, let me just check. 237 00:18:45,790 --> 00:18:47,830 Let me just check quickly what is going on here. 238 00:18:48,910 --> 00:18:49,740 We get that. 239 00:18:50,260 --> 00:18:53,530 I'm just going to get it from somewhere, some other code I wrote. 240 00:18:55,240 --> 00:18:59,100 Um, let me go here. 241 00:19:03,180 --> 00:19:10,890 So we have a phone number, so we need to surround this inside of some kind of brackets so we don't 242 00:19:10,890 --> 00:19:11,490 need this. 243 00:19:12,530 --> 00:19:17,360 Meerut, and then this is going to be name and this is going to be. 244 00:19:18,840 --> 00:19:23,500 This is going to be something like actually do does work. 245 00:19:23,590 --> 00:19:27,590 So we need to do is really copy this now. 246 00:19:30,330 --> 00:19:30,940 It there. 247 00:19:33,160 --> 00:19:39,350 I can go to the browser, you need some quotes in your query. 248 00:19:41,350 --> 00:19:45,820 You need to surround them by, quote, single quote. 249 00:19:48,780 --> 00:19:49,920 I single people like this. 250 00:19:53,310 --> 00:19:57,490 Yes, around 11 zero zero one by a single quote unquote. 251 00:19:58,620 --> 00:20:00,930 My, my, my, my idea is hanging. 252 00:20:00,960 --> 00:20:01,470 Let's see. 253 00:20:03,940 --> 00:20:04,960 Oh, is this my idea? 254 00:20:04,990 --> 00:20:06,040 Is it the whole computer? 255 00:20:06,730 --> 00:20:07,840 The computer's frozen. 256 00:20:12,650 --> 00:20:13,350 Oh, my God. 257 00:20:13,610 --> 00:20:13,990 Frozen. 258 00:20:14,170 --> 00:20:14,600 OK. 259 00:20:21,840 --> 00:20:22,040 The. 260 00:20:23,840 --> 00:20:26,330 Oh, my computer's frozen on. 261 00:20:32,070 --> 00:20:37,520 But your voice is audible check if any other application is opening or is it just the browser? 262 00:20:40,270 --> 00:20:41,770 Looks like it's only the browser. 263 00:20:42,700 --> 00:20:45,670 No, it's it's actually not is everything, actually. 264 00:20:47,200 --> 00:20:47,500 All right. 265 00:20:49,370 --> 00:20:51,490 Oh, let me restart, then come back. 266 00:20:52,660 --> 00:20:54,000 It is not this and come back. 267 00:20:57,970 --> 00:21:00,490 So I stunned. 268 00:21:00,910 --> 00:21:01,740 Well. 269 00:22:03,070 --> 00:22:04,330 Uh, Aboubacar. 270 00:22:06,240 --> 00:22:06,810 Yes. 271 00:22:07,850 --> 00:22:13,670 Are you able to install successfully version 13 of. 272 00:22:16,270 --> 00:22:17,240 OK, great. 273 00:22:22,120 --> 00:22:26,680 And you create all these exercises, are you? 274 00:22:27,730 --> 00:22:37,570 Yes, yes, but my question is how to add some duct tape to our core customer? 275 00:22:38,290 --> 00:22:47,220 I think because I wish I could say go ahead. 276 00:22:47,310 --> 00:22:47,660 Go ahead. 277 00:22:47,850 --> 00:22:56,200 But yes, I do not want the link of supplier to my customer that I do see. 278 00:22:56,200 --> 00:23:02,200 I want the whole of supplier in my in my customer 279 00:23:05,390 --> 00:23:05,670 area. 280 00:23:05,980 --> 00:23:14,800 It's available it's available any time in the application, in the system in the next year, we or any 281 00:23:14,800 --> 00:23:15,670 other customer. 282 00:23:16,000 --> 00:23:29,230 But but but now, Phil, as Karen said, our application, uh, it's, uh, composed with the menu, 283 00:23:30,130 --> 00:23:30,700 Dr.. 284 00:23:32,160 --> 00:23:34,580 Yes, yes, yes. 285 00:23:35,520 --> 00:23:43,480 So I want to display a supplier and my dashboard in my customer. 286 00:23:46,450 --> 00:23:53,930 Thing, you want to fetch data from other application in your customer, right? 287 00:23:56,670 --> 00:23:57,750 No, they won't. 288 00:23:59,310 --> 00:24:00,450 They want to use. 289 00:24:01,640 --> 00:24:12,730 Uh, doctype from another mother and my custom and my husband, you can do it on your dashboard, tells 290 00:24:12,740 --> 00:24:15,830 you what to do with the dashboard, you look at the select statement read. 291 00:24:17,010 --> 00:24:22,470 Yes, so in your salute, you will put the front there, you will put the table name. 292 00:24:23,990 --> 00:24:24,750 OK. 293 00:24:25,310 --> 00:24:26,240 OK, that's it. 294 00:24:27,230 --> 00:24:29,870 It's very easy, it's not complicated. 295 00:24:31,040 --> 00:24:31,450 OK. 296 00:24:32,440 --> 00:24:33,640 And name it. 297 00:24:33,670 --> 00:24:37,190 Is this the DOCTYPE name? 298 00:24:38,460 --> 00:24:44,020 Prefixed by a beat and took that name. 299 00:24:45,210 --> 00:24:59,200 OK, but what I saw in the framework documentation is something something about Shecter and custom five 300 00:25:00,630 --> 00:25:10,980 about picture fixture isn't stricture is a technique, is a technique to your work, your custom development 301 00:25:11,460 --> 00:25:14,410 from an instance to another instance. 302 00:25:14,430 --> 00:25:19,380 Suppose you have development and you have another instance, another environment called. 303 00:25:21,960 --> 00:25:22,350 OK. 304 00:25:22,380 --> 00:25:27,730 And another and another third environment production, supposedly harmful, the environment. 305 00:25:28,410 --> 00:25:34,110 First time you work on your development, once it is ready for development, you want to move it to 306 00:25:34,110 --> 00:25:34,960 another instance. 307 00:25:35,670 --> 00:25:43,080 So we have to option, whether you do the words manually in the second instance manually or you use 308 00:25:43,080 --> 00:25:44,960 this fixture technique. 309 00:25:44,970 --> 00:25:47,090 We will see this also mixture. 310 00:25:47,850 --> 00:25:54,600 It's kind of moving your work, your development from an instance to another instance. 311 00:25:55,490 --> 00:25:56,580 We call it fixed to. 312 00:25:59,200 --> 00:26:02,800 OK, it is. 313 00:26:36,560 --> 00:26:44,030 Well, is facing problem in installing Europe next summer. 314 00:26:44,090 --> 00:26:44,490 So. 315 00:26:47,870 --> 00:26:48,520 This is. 316 00:26:50,810 --> 00:26:56,090 So the question is how to doctype from different model. 317 00:27:02,040 --> 00:27:04,770 Calling sometimes from a different matter. 318 00:27:05,550 --> 00:27:15,900 We do so, we so and and when it is you are defeated, for example, you have another module and you 319 00:27:15,900 --> 00:27:21,390 want to call our number list in other module. 320 00:27:21,720 --> 00:27:27,310 So you you will put the Duke type name type name, his name. 321 00:27:27,390 --> 00:27:29,010 We saw this in defense from. 322 00:27:30,520 --> 00:27:37,150 Yes, yeah, this is for a field in another, another window and another. 323 00:27:38,860 --> 00:27:41,800 So it is ductile named dirt field name. 324 00:27:44,900 --> 00:27:45,890 Oh, no. 325 00:27:46,940 --> 00:27:49,340 Well, OK, I will share the screen. 326 00:27:59,990 --> 00:28:00,660 Since. 327 00:28:02,990 --> 00:28:13,960 See here, this membership, this membership supposedly with two new members, new membership and full 328 00:28:13,970 --> 00:28:23,380 page, so this list of value, it is easing from member DOCTYPE library member. 329 00:28:24,050 --> 00:28:28,260 I am I am writing the new membership for a member. 330 00:28:29,090 --> 00:28:32,580 So this list is showing me a list of members. 331 00:28:33,200 --> 00:28:36,580 So this list of members is anything from another type. 332 00:28:37,200 --> 00:28:37,550 OK. 333 00:28:39,260 --> 00:28:46,070 When you create a membership, when you create a membership, let's go to membership. 334 00:28:48,050 --> 00:28:55,630 This is the membership, the time when you create membership, the type you will feel to remember. 335 00:28:56,630 --> 00:28:59,240 So first you do a membership for membership. 336 00:28:59,240 --> 00:29:00,250 It should be a member. 337 00:29:00,860 --> 00:29:04,750 So you will remember few. 338 00:29:05,090 --> 00:29:06,320 It is auctions. 339 00:29:06,320 --> 00:29:12,350 Library membership is reading all the old members from the library. 340 00:29:12,350 --> 00:29:21,710 Remember that name and I link is very important to voting. 341 00:29:22,060 --> 00:29:32,420 But in the case we have that, we have to customize the DOCTYPE. 342 00:29:32,450 --> 00:29:34,230 There is another of the. 343 00:29:36,380 --> 00:29:39,830 You see, I want the name, it's clear that. 344 00:29:41,750 --> 00:29:52,820 That you or something like that and and and customize it in the next update, will get lost the Minemakers 345 00:29:54,190 --> 00:29:54,980 customisation. 346 00:29:55,330 --> 00:29:56,200 You see what the. 347 00:29:56,200 --> 00:29:57,670 Yes, yes. 348 00:29:58,810 --> 00:30:03,900 So how can you get this customization? 349 00:30:03,910 --> 00:30:07,630 And I put it in my custom app. 350 00:30:07,900 --> 00:30:12,260 You see, this is the part what I want to do. 351 00:30:12,290 --> 00:30:12,540 Yeah. 352 00:30:13,150 --> 00:30:13,600 Yeah. 353 00:30:13,690 --> 00:30:23,470 Let me tell you, you are doing customization in the Stender, which is a ducktail or is your custom 354 00:30:24,840 --> 00:30:26,410 and the Cape. 355 00:30:27,560 --> 00:30:31,550 And this is what you ask, for example. 356 00:30:31,570 --> 00:30:32,940 It's going to here. 357 00:30:33,760 --> 00:30:36,250 I will I will open supplier. 358 00:30:36,910 --> 00:30:39,230 Supplier's supplier. 359 00:30:39,340 --> 00:30:39,810 That guy. 360 00:30:42,860 --> 00:30:50,400 So it is not recommended to customize supplier in this way if it is still there. 361 00:30:50,450 --> 00:30:57,380 So what we do customize customized for there is going to be customized for. 362 00:31:02,390 --> 00:31:04,090 Estimate is for. 363 00:31:05,840 --> 00:31:09,510 And here you will enter your supplier dial. 364 00:31:12,580 --> 00:31:23,850 And then you had your your custom, for example, here and there, and insert below, let's say, a 365 00:31:24,470 --> 00:31:25,870 commercial registry. 366 00:31:26,230 --> 00:31:27,380 A commercial registry. 367 00:31:27,400 --> 00:31:28,720 No, it's a department. 368 00:31:28,730 --> 00:31:30,380 That's OK. 369 00:31:31,020 --> 00:31:36,550 OK, you are just one field in the sea, the tower and you update. 370 00:31:40,230 --> 00:31:43,960 OK, we have no commercial registry. 371 00:31:43,990 --> 00:31:44,630 No, no. 372 00:31:45,500 --> 00:31:50,130 Yes, and if you go to this supplier. 373 00:31:53,770 --> 00:31:54,100 This. 374 00:31:56,850 --> 00:31:57,660 Create a new. 375 00:32:01,050 --> 00:32:11,100 R should be here, commercial, commercial, you, and it belongs to its modern. 376 00:32:12,510 --> 00:32:13,500 Supplies. 377 00:32:13,860 --> 00:32:15,790 It is dire. 378 00:32:16,380 --> 00:32:19,740 No, no, what we customizer. 379 00:32:23,340 --> 00:32:24,170 Supplier. 380 00:32:27,270 --> 00:32:27,780 Is 381 00:32:31,210 --> 00:32:34,800 the lobster buying, buying? 382 00:32:35,910 --> 00:32:45,800 I don't belong to buying because the next update, it will there is something that 383 00:32:48,750 --> 00:32:56,760 we can confirm is a guarantee if we are it, and using customized for it will not tolerate it will not 384 00:32:56,760 --> 00:32:57,360 be lost. 385 00:32:58,170 --> 00:33:01,620 Will you have I will take notes of your question. 386 00:33:01,630 --> 00:33:14,700 By the way, how much do you have to my, my and my young men to see the table. 387 00:33:16,080 --> 00:33:17,150 Yeah, we can discuss. 388 00:33:18,210 --> 00:33:20,130 You can go to the table. 389 00:33:21,780 --> 00:33:22,860 Custom field tab. 390 00:33:22,860 --> 00:33:23,670 Custom feel. 391 00:33:31,520 --> 00:33:31,790 This. 392 00:33:39,350 --> 00:33:39,620 That's. 393 00:33:44,550 --> 00:33:45,240 Is. 394 00:33:49,430 --> 00:33:50,600 It's not name. 395 00:33:51,770 --> 00:33:52,970 I don't know the name. 396 00:33:55,210 --> 00:33:56,820 So they're just shake. 397 00:34:00,510 --> 00:34:00,790 Mr.. 398 00:34:03,540 --> 00:34:04,530 That's going to yield. 399 00:34:08,530 --> 00:34:08,700 And. 400 00:34:12,730 --> 00:34:13,150 The. 401 00:34:15,740 --> 00:34:16,310 Is. 402 00:34:21,200 --> 00:34:29,780 If you look at the very least the content of this table, you should see your the feel S.R. you just 403 00:34:29,780 --> 00:34:30,200 added. 404 00:34:30,560 --> 00:34:32,750 So it's it's getting saved in the database. 405 00:34:32,760 --> 00:34:40,820 So you would not lose that after a Frappier ERP upgrade version? 406 00:34:43,260 --> 00:34:43,760 We do. 407 00:34:43,760 --> 00:34:46,280 You feel it has a screen. 408 00:34:46,910 --> 00:34:49,070 There is this that we have created. 409 00:34:49,070 --> 00:35:00,740 Now it's three minutes by a custom S.R. Indisciplined Labor this hour and it is not we will not be lost. 410 00:35:00,830 --> 00:35:03,360 We can confirm this with the Guaranies. 411 00:35:03,590 --> 00:35:10,430 But the question it has two parts how to create custom in the standard and the standard of time and 412 00:35:10,430 --> 00:35:15,950 how to export custom in using our customer. 413 00:35:16,220 --> 00:35:16,800 Yes. 414 00:35:16,830 --> 00:35:17,770 To help. 415 00:35:19,520 --> 00:35:19,940 Yeah. 416 00:35:20,540 --> 00:35:21,530 So exportations. 417 00:35:22,910 --> 00:35:23,260 Yeah. 418 00:35:23,270 --> 00:35:27,900 And the exportation will check with Karani how to do it. 419 00:35:28,100 --> 00:35:29,300 Personally I don't get. 420 00:35:30,380 --> 00:35:35,420 And I don't know how much time you spend a lot of time to connect. 421 00:35:36,220 --> 00:35:39,340 I think this is not able to. 422 00:35:40,750 --> 00:35:41,490 I will see it. 423 00:35:42,110 --> 00:35:45,300 But let me tell him truth here. 424 00:35:48,030 --> 00:35:49,110 I am here, I'm here. 425 00:35:50,000 --> 00:35:52,650 Oh, yes. 426 00:35:53,330 --> 00:36:05,280 You just came in time, so I know the question is about who want to have the custom field and stand 427 00:36:05,630 --> 00:36:05,990 down. 428 00:36:06,480 --> 00:36:14,070 And I show them how to ask if he is now he is second question, how to export or using these custom 429 00:36:14,100 --> 00:36:15,470 fields using our customer. 430 00:36:18,030 --> 00:36:28,350 So if you want to add a custom field in a standard inductive that is done by ERP, next to this is screen. 431 00:36:28,410 --> 00:36:29,500 This was in the file. 432 00:36:30,170 --> 00:36:30,620 Yes. 433 00:36:30,630 --> 00:36:30,960 Is. 434 00:36:33,810 --> 00:36:41,850 You can see on my screen, I know what it is, just the start cheering and it will stop here by the. 435 00:36:46,360 --> 00:36:49,220 OK, so so is it. 436 00:36:49,570 --> 00:36:50,320 You can see it. 437 00:36:51,380 --> 00:36:52,650 Yes, yes. 438 00:36:53,090 --> 00:37:01,170 Look for you to create that constant feud in Boston recently could cost. 439 00:37:02,640 --> 00:37:10,050 For us to have confidence here, well, and here you have a number of custom fields, so this is where 440 00:37:10,050 --> 00:37:14,480 you're supposed to clear that, that the custom food, you select a document here. 441 00:37:16,020 --> 00:37:19,200 We want to custom doctor, not custom. 442 00:37:22,180 --> 00:37:24,030 You want to create a book? 443 00:37:24,670 --> 00:37:25,330 Yes. 444 00:37:27,380 --> 00:37:28,040 Accustomed to 445 00:37:31,170 --> 00:37:35,700 it from, uh, from the, uh. 446 00:37:36,840 --> 00:37:38,060 For a period of time. 447 00:37:40,180 --> 00:37:45,640 I want to change, uh, some DOCTYPE from the U.S.. 448 00:37:50,070 --> 00:38:00,360 So at least so we have a priest here is if you were to create solutions, you know, we don't want this. 449 00:38:01,480 --> 00:38:05,520 No, no, no, I don't want to create a DOCTYPE. 450 00:38:05,820 --> 00:38:16,690 As I said, as an orphan said, I want to export my custom doctype that I customize it from for up the 451 00:38:17,680 --> 00:38:22,950 from Frappier to my custom application. 452 00:38:25,170 --> 00:38:35,040 So we stop it with now that how we will be exporting our custom. 453 00:38:35,780 --> 00:38:38,560 Uh doctype from the. 454 00:38:40,440 --> 00:38:48,300 OK, so so if you need to do that, you have to what you do is that you write you write the if you go 455 00:38:48,300 --> 00:38:52,920 to a computer, you used to be like, well, we are going to be looking at this. 456 00:38:54,090 --> 00:38:55,590 There are things called fixed us. 457 00:38:56,010 --> 00:38:58,860 You can you can look at the front documentation. 458 00:38:59,550 --> 00:39:00,120 I don't want to. 459 00:39:00,210 --> 00:39:01,410 Very much so. 460 00:39:02,840 --> 00:39:03,220 OK. 461 00:39:04,860 --> 00:39:06,590 And so since it isn't. 462 00:39:06,930 --> 00:39:07,190 Yes. 463 00:39:07,230 --> 00:39:13,110 Money, he wanted to go and get that because we are not yet in that topic. 464 00:39:13,720 --> 00:39:17,130 So the next time I want 465 00:39:20,220 --> 00:39:25,530 this, this one is the custom fixed class who you are, the witness. 466 00:39:25,710 --> 00:39:31,110 And then you can you can explore the custom fields to you are to you are this week's just is going to 467 00:39:31,110 --> 00:39:33,000 be on your custom custom app. 468 00:39:33,450 --> 00:39:39,720 So every time you you put your custom up to any other place is going to go with your on fields, but 469 00:39:41,090 --> 00:39:42,840 this one is in the advanced topics. 470 00:39:43,770 --> 00:39:44,180 OK. 471 00:39:44,230 --> 00:39:44,390 OK. 472 00:39:45,520 --> 00:39:56,340 It's an agenda of adventure topics, you know, filled with stuff with you that how to export our. 473 00:39:56,970 --> 00:40:00,500 What did you do there. 474 00:40:01,510 --> 00:40:03,980 It's is it's a terrific topic. 475 00:40:03,990 --> 00:40:07,590 We'll see this in advance of the module. 476 00:40:08,160 --> 00:40:08,640 OK. 477 00:40:08,650 --> 00:40:08,910 OK. 478 00:40:08,920 --> 00:40:09,260 OK. 479 00:40:10,110 --> 00:40:10,600 Thank you. 480 00:40:10,620 --> 00:40:11,040 Thank you. 481 00:40:15,420 --> 00:40:20,730 OK, so we my computer of died off. 482 00:40:20,730 --> 00:40:23,880 When you are doing this we want that to filter. 483 00:40:25,100 --> 00:40:26,080 To fill the. 484 00:40:27,560 --> 00:40:34,400 Only the user or the member who's maybe ideas provided and they don't seem to get the school to work, 485 00:40:34,400 --> 00:40:36,390 I don't know what exactly is going on here. 486 00:40:37,100 --> 00:40:39,100 This is something I've done over and over and over. 487 00:40:39,110 --> 00:40:40,970 I don't know why this one doesn't work. 488 00:40:41,780 --> 00:40:44,540 So I'm going to do that to check that in. 489 00:40:44,540 --> 00:40:45,700 We go back to that tomorrow. 490 00:40:46,100 --> 00:40:52,140 So literally, no, I'm still getting an error and we can go back to that tomorrow. 491 00:40:52,370 --> 00:41:00,300 So for now, let me let me let me look at how to access this week from Posthuman, because remember, 492 00:41:00,300 --> 00:41:05,720 we said that when you were writing these APIs, most of the time the apps that you are going to be writing 493 00:41:05,800 --> 00:41:13,430 are going to be consumed by maybe a mobile application or maybe a front end up made by something like 494 00:41:13,520 --> 00:41:17,000 react or maybe any other front like view. 495 00:41:18,170 --> 00:41:21,370 So how do you get these things to work now? 496 00:41:21,380 --> 00:41:22,420 If we go to postwoman? 497 00:41:22,520 --> 00:41:28,460 This, I think, is one of the most common EPA testing up here. 498 00:41:28,460 --> 00:41:31,470 We provide a look at what we are providing here. 499 00:41:31,640 --> 00:41:38,210 So if you got how to get this, we are going to have the same so we can even copy that. 500 00:41:38,780 --> 00:41:45,320 And then here, because this is supposed to mean we are supposed to provide we are supposed to provide 501 00:41:45,320 --> 00:41:47,330 everything from the Eurail. 502 00:41:48,390 --> 00:41:56,580 All the way up to the yeah, and the method are standard, so every you need to go to to get to you 503 00:41:56,580 --> 00:42:04,830 have to provide this so that you are you are in the end then method and then they link to the part where 504 00:42:04,830 --> 00:42:07,500 you are apass written or your method is written. 505 00:42:08,310 --> 00:42:10,770 So, you know, case here. 506 00:42:11,790 --> 00:42:12,660 Which one is that. 507 00:42:14,740 --> 00:42:18,900 Yes, it is certainly a question even to me. 508 00:42:18,900 --> 00:42:19,860 I don't understand. 509 00:42:19,860 --> 00:42:26,530 What is the first time I heard about this and can you share the link of this Bustamente. 510 00:42:27,860 --> 00:42:28,350 Bustamante. 511 00:42:30,380 --> 00:42:33,830 OK, Bustamante, you don't want my machine. 512 00:42:35,660 --> 00:42:38,270 Is an application to download it used to test APIs. 513 00:42:39,160 --> 00:42:46,480 You can either download it, install it, or because if you look here, posthuman, I have installed 514 00:42:46,490 --> 00:42:47,030 mine here. 515 00:42:48,530 --> 00:42:49,010 OK. 516 00:42:49,670 --> 00:42:55,640 Alternatively, you can use from from Google Chrome, Google Chrome has it, but I would recommend that 517 00:42:55,850 --> 00:42:59,050 you install it, you install it inside of your computer. 518 00:42:59,480 --> 00:43:06,290 So after you have it now here, you can access in any application out there as long as you have access 519 00:43:07,180 --> 00:43:07,510 to it. 520 00:43:07,600 --> 00:43:14,330 So if you try to access our method now, remember, gentlemen, you are getting it. 521 00:43:14,360 --> 00:43:20,600 So let me get this back here and y why you use busman way. 522 00:43:22,430 --> 00:43:31,100 It's just preference, but again, it is one of the most common way of testing APIs, so we have posthuman, 523 00:43:31,100 --> 00:43:35,400 we have others like insomnia, we have others that have that are developed. 524 00:43:35,660 --> 00:43:39,290 I think they see one one four four four years code. 525 00:43:39,710 --> 00:43:45,200 But Posthuman is the most famous I mean, to do what was what you needed. 526 00:43:46,450 --> 00:43:47,850 What are you drinking? 527 00:43:48,680 --> 00:43:57,010 OK, so look, look, look at this function, Mommy, I assume you have built your mobile app or mobile 528 00:43:57,010 --> 00:44:00,960 app built is maybe it's using something like glitzier, yet native. 529 00:44:02,140 --> 00:44:10,320 And then you are supposed to use maybe that mobile app to register members in this library. 530 00:44:12,270 --> 00:44:17,880 Maybe maybe you want people with you have some few employees who you want to go around the library registering, 531 00:44:17,880 --> 00:44:23,720 people who may be in the library and they are not members yet, and you don't want them to carry a computer. 532 00:44:23,730 --> 00:44:25,830 You have a mobile app on your phone. 533 00:44:26,220 --> 00:44:32,890 And you, again, you don't want your users to be accessing your next with your mobile phone. 534 00:44:33,630 --> 00:44:40,590 So what you need to do is create a mobile app that is maybe going to be accessing an API like this one 535 00:44:41,070 --> 00:44:46,680 and then is going to do whatever you have instructed it to do here, like create a new member. 536 00:44:48,200 --> 00:44:54,240 So at the end, you are doing a simulation of your NBA, you are trying to test your NBA, all right? 537 00:44:55,130 --> 00:44:59,430 Yes, yes, yes, yes, yes, yes, it is. 538 00:44:59,560 --> 00:45:01,870 Yeah, it's like simulating simulating stuff here. 539 00:45:02,000 --> 00:45:08,000 So this data that you are seeing on our browser, when we when we access this function, we expect that 540 00:45:08,000 --> 00:45:10,310 when we run this successfully, we are going to see it. 541 00:45:12,430 --> 00:45:12,900 Yeah. 542 00:45:12,930 --> 00:45:15,530 And remember, this one is like an external application. 543 00:45:15,580 --> 00:45:22,730 Bustamonte is external, so it will be accessing our next instance and giving us the data that is inside 544 00:45:22,730 --> 00:45:23,510 of your penis. 545 00:45:23,840 --> 00:45:31,070 So after this, we will have successfully managed to use an external application to access data inside 546 00:45:31,070 --> 00:45:32,480 of our Europeanist instance. 547 00:45:33,200 --> 00:45:33,770 Potkin. 548 00:45:35,680 --> 00:45:36,490 That's clear, right? 549 00:45:37,090 --> 00:45:38,000 Yes, it's good. 550 00:45:38,590 --> 00:45:39,340 Great, great. 551 00:45:39,640 --> 00:45:41,890 So if I come to my application. 552 00:45:44,570 --> 00:45:48,890 I want to click on one of these so that I can show you the difference. 553 00:45:50,870 --> 00:45:55,130 Clear, when I put this button on uncle, I'm OK. 554 00:45:55,160 --> 00:45:59,980 I think I need to reload to start my travel so I can now hear this quote. 555 00:45:59,990 --> 00:46:01,150 Someone ask this question. 556 00:46:01,490 --> 00:46:06,830 I think the code here to get all members, but those would be reflected on the browser. 557 00:46:06,840 --> 00:46:07,940 I had to restart the server. 558 00:46:08,450 --> 00:46:09,860 So now I click the button 559 00:46:12,830 --> 00:46:13,450 functionality. 560 00:46:15,490 --> 00:46:17,650 Get all members in. 561 00:46:19,810 --> 00:46:24,450 Remember, this is important to remember. 562 00:46:27,030 --> 00:46:34,590 Now, get all members, I can comment on this just to be sure, and then I will about. 563 00:46:39,410 --> 00:46:41,060 And then I can read about this. 564 00:46:49,160 --> 00:46:56,760 And not that you see this one, I'm able to get the data on my browser. 565 00:46:57,350 --> 00:46:59,420 Now I want us to try and hit this theme. 566 00:46:59,450 --> 00:47:01,880 You are using our postwoman here. 567 00:47:02,120 --> 00:47:06,350 And this is the you are intent on getting this message. 568 00:47:06,470 --> 00:47:07,500 You are not permitted. 569 00:47:08,240 --> 00:47:09,290 So I'm not permitted. 570 00:47:09,320 --> 00:47:16,760 How come when I am using the browser, I am getting the data, but when I am using postmen, I am not 571 00:47:16,760 --> 00:47:18,740 able to get the data from this same function. 572 00:47:18,740 --> 00:47:19,480 Is this function. 573 00:47:20,300 --> 00:47:24,820 And the reason is because here when you're are here, you are in. 574 00:47:24,950 --> 00:47:30,770 So that system allows you when you are doing this data from here, this is the you and this is why it 575 00:47:30,770 --> 00:47:31,840 is giving you the results. 576 00:47:32,270 --> 00:47:36,070 But when you try to access it from Postman, this is them that they know who this is. 577 00:47:36,470 --> 00:47:41,500 And remember, this is not this is this function does not have allow guest here. 578 00:47:42,110 --> 00:47:44,150 So it's not going to allow me to access that data. 579 00:47:44,690 --> 00:47:48,380 But if I do here, allow guests and I put it to through. 580 00:47:49,580 --> 00:47:55,880 And I say when I come to Bozeman, hopefully I do not need to throw the browser I sent, I am going 581 00:47:55,880 --> 00:47:56,640 to get the data. 582 00:47:56,690 --> 00:47:57,470 Here's the data. 583 00:47:59,660 --> 00:48:06,080 So we have the three members and then here we have an object, which is an array of objects. 584 00:48:07,260 --> 00:48:15,570 Now, this has been enabled by allowing everyone to see everybody, even if they knew each part of the 585 00:48:15,570 --> 00:48:18,690 world would be able to access our API here. 586 00:48:19,830 --> 00:48:22,100 Now, what if that is not what we want? 587 00:48:22,590 --> 00:48:23,340 We remove that. 588 00:48:23,340 --> 00:48:25,600 We want this to be only accessible. 589 00:48:25,620 --> 00:48:26,790 Remember, these are our members. 590 00:48:27,210 --> 00:48:32,980 So we do not want anyone from any part of the world to be able to access our API and see our members. 591 00:48:33,450 --> 00:48:34,590 So how do we do that? 592 00:48:35,110 --> 00:48:36,420 How we are going to do that? 593 00:48:37,020 --> 00:48:45,090 If we are going to give it to provide, we are going to provide an authorization token that is going 594 00:48:45,090 --> 00:48:53,370 to access to access the world to check whether this user is authorized and give us access to the API 595 00:48:53,970 --> 00:48:55,320 and how you are going to do that. 596 00:48:55,590 --> 00:48:57,170 You go to your application. 597 00:48:57,690 --> 00:49:04,740 So most of the time here, what we do is you create an API user so that the does not keep changing. 598 00:49:05,220 --> 00:49:09,170 Go to users, go to the user, select any user here. 599 00:49:09,180 --> 00:49:11,360 In my case, I can just use administrator. 600 00:49:11,940 --> 00:49:13,770 But this is for the purpose of testing. 601 00:49:14,310 --> 00:49:21,570 If you are going into production, create an API user so that the keys don't change because if they 602 00:49:21,570 --> 00:49:24,300 change, the API is not going to be accessible. 603 00:49:25,050 --> 00:49:28,610 Then you go down to where you see API access. 604 00:49:29,220 --> 00:49:34,050 Yeah, I had generated these ones when I was testing so you can just click you us will be blunt here. 605 00:49:34,050 --> 00:49:35,240 They will not be anything here. 606 00:49:35,850 --> 00:49:37,710 Just click on generate this. 607 00:49:39,360 --> 00:49:46,200 Here you have been it has given you the EPA secret, which is this key, so you can copy that, take 608 00:49:46,200 --> 00:49:49,920 it back to your postman and in the henhouse section. 609 00:49:49,920 --> 00:49:54,620 And let me say it is why there is so that you see, I have removed every move they allowed guest here. 610 00:49:54,960 --> 00:49:58,950 So when I send this is going to give me I'm not artist error. 611 00:49:59,370 --> 00:50:00,940 I am not permitted error. 612 00:50:01,380 --> 00:50:06,540 So in the header section of your of your postman provide authorisation. 613 00:50:07,960 --> 00:50:14,890 Authorization I here provided talking to provide our European spouses. 614 00:50:15,670 --> 00:50:19,990 You are supposed to provide the API key Kolon EPA secret. 615 00:50:20,560 --> 00:50:24,210 Remember when you are here, we have been given our EPA secrets. 616 00:50:24,220 --> 00:50:25,180 You can copy this. 617 00:50:25,720 --> 00:50:26,590 Come with it here. 618 00:50:27,010 --> 00:50:32,760 Remember the old days EPA call on EPA secret so we don't have a debate about the EPA secret. 619 00:50:33,160 --> 00:50:40,330 So I have done a column and then EPA secret and, you know, to go back here and get my EPA key to close 620 00:50:40,330 --> 00:50:47,350 this and my EPA is here so I can copy that and then go back to Posthuman and then put it here. 621 00:50:49,280 --> 00:50:52,530 And then when I said this, I going to get the results back again. 622 00:50:54,670 --> 00:50:55,450 In equation's. 623 00:50:58,510 --> 00:51:09,850 I was going to talk and there is a spacer yes, there is Pocan, then Aspies, APRC, then Apollon and 624 00:51:09,850 --> 00:51:15,340 then the EPA secret, this is going to generate for you an authorization talking that's going to give 625 00:51:15,340 --> 00:51:17,860 you access to the apps that are locked. 626 00:51:18,910 --> 00:51:21,030 So you cannot and will not. 627 00:51:21,070 --> 00:51:27,900 Sorry, ma'am, you cannot access this API when it is not when it's not accessible to everybody. 628 00:51:27,960 --> 00:51:29,530 And so this is a private API. 629 00:51:31,000 --> 00:51:36,820 Can you go to the postman and the page, will you chosen from where to download? 630 00:51:37,120 --> 00:51:40,550 Can you open Google Chrome and let me let me introduce. 631 00:51:41,380 --> 00:51:46,120 So don't invite the postman. 632 00:51:46,960 --> 00:51:54,790 If you are on if you are online not you can just you can just do not store this and still have it. 633 00:51:56,220 --> 00:51:58,740 And he just confirmed posting on. 634 00:52:02,230 --> 00:52:04,530 No windows, you can you can just. 635 00:52:13,970 --> 00:52:17,720 Yes, Karen Barlow. 636 00:52:21,870 --> 00:52:22,450 OK. 637 00:52:23,790 --> 00:52:25,660 Your voice, Karana. 638 00:52:27,550 --> 00:52:34,530 My voice was breaking up, yes, is that yeah, yeah, sorry about that. 639 00:52:34,570 --> 00:52:43,930 So I think these are resource called the snap craft or snap store for four for Linux that is very rich 640 00:52:43,930 --> 00:52:46,540 in this software and it's very easy to install from them. 641 00:52:46,930 --> 00:52:49,210 So I have posted this link. 642 00:52:49,390 --> 00:52:53,010 They link to the to the application to the page, which has Budiman. 643 00:52:53,500 --> 00:52:59,800 So what you need to do is just to click on install then copy this commanded Suda has not been store 644 00:52:59,810 --> 00:53:07,870 postman if that is if you are Linux, if you are on Windows I have read both of them on the window. 645 00:53:11,910 --> 00:53:15,720 For Windows, it is how to install it in windows. 646 00:53:17,600 --> 00:53:22,820 So download posting on Windows. 647 00:53:26,060 --> 00:53:29,980 Here is the thing here. 648 00:53:30,180 --> 00:53:33,620 I don't think I was ready to do it. 649 00:53:35,480 --> 00:53:40,230 Just go to post one page and put them on page download. 650 00:53:44,200 --> 00:53:49,450 Just go to post one page and they want you to download, OK? 651 00:53:49,480 --> 00:53:57,190 Most men don't come here, are posting one million books that are going to result in. 652 00:54:02,560 --> 00:54:03,220 What do you think? 653 00:54:07,110 --> 00:54:07,530 Great. 654 00:54:10,140 --> 00:54:12,070 Yes, this is a very important topic. 655 00:54:12,120 --> 00:54:14,040 This is critically important. 656 00:54:14,310 --> 00:54:18,480 We also have it in the advanced topics, but it is good that you start understanding what is happening 657 00:54:18,480 --> 00:54:19,140 here now. 658 00:54:20,990 --> 00:54:21,460 You can. 659 00:54:24,620 --> 00:54:30,920 So depending on the API key you use, you will be authenticated with that user. 660 00:54:30,950 --> 00:54:38,690 So if that user would not have access to some part of the application, it will be enforced as if you 661 00:54:38,690 --> 00:54:44,870 were you would have done this call from the the browser within the app. 662 00:54:44,870 --> 00:54:45,340 Right. 663 00:54:48,450 --> 00:54:49,320 You can you can do. 664 00:54:52,200 --> 00:54:58,560 The other alternative, the other alternative would be when you are logging in your users, that's it, 665 00:54:58,560 --> 00:55:02,270 then you're going to check when they have accessed which parts of the application. 666 00:55:02,820 --> 00:55:08,700 But yes, you can use API, you can use the keys to check the user is loading and check the rights and 667 00:55:08,700 --> 00:55:09,710 privileges they have. 668 00:55:14,420 --> 00:55:15,010 From. 669 00:55:21,730 --> 00:55:26,320 Is working in it? 670 00:55:27,550 --> 00:55:35,170 Yes, I don't know what the decision was, I thought maybe I could introduce this subscripts. 671 00:55:37,550 --> 00:55:41,140 I don't know, can you go back to the agenda? 672 00:55:43,400 --> 00:55:50,190 Yes, they're just here. 673 00:55:50,630 --> 00:55:52,610 We have done nothing. 674 00:55:52,990 --> 00:55:54,320 Actually, this is the. 675 00:55:57,300 --> 00:56:02,160 It's like it's like we have been wrapping up what we thought we were doing yesterday on Epis. 676 00:56:03,150 --> 00:56:05,310 So I thought we can make this happen. 677 00:56:05,790 --> 00:56:07,500 They are not they are not any different, actually. 678 00:56:07,530 --> 00:56:09,180 They are what we have we have been doing here. 679 00:56:11,200 --> 00:56:19,030 So this is number 13 Karani, using custom scripts to do arithmetic, did we do this? 680 00:56:19,030 --> 00:56:19,630 We do this. 681 00:56:22,280 --> 00:56:33,250 Yeah, so I what the customs scripts is what and you see the name Midhat mentioned this yesterday, 682 00:56:34,240 --> 00:56:42,180 when you are on a form like, for instance, member library Abdulemam list, when you are different, 683 00:56:42,190 --> 00:56:45,190 you remember how we got this phone number. 684 00:56:46,630 --> 00:56:48,120 We I don't remember what we did. 685 00:56:48,160 --> 00:56:56,290 We had we had we had this one where we put we put something and then it submitted and it was it was 686 00:56:56,290 --> 00:56:57,100 it was put here. 687 00:56:57,490 --> 00:56:59,860 So they arithmetics something like that. 688 00:56:59,860 --> 00:57:06,100 If you have maybe your page of prices, for instance, maybe homebred is this one. 689 00:57:06,370 --> 00:57:08,950 You have what the price is this one. 690 00:57:09,190 --> 00:57:16,630 And you wanted to know the total here with an action custom script, you run, for instance, you click 691 00:57:16,630 --> 00:57:21,790 on a button or whatever you want to do or you collect it on the rest of the page. 692 00:57:21,820 --> 00:57:28,600 So meaning you don't need any user action and then you get the data using the form dot dot. 693 00:57:28,780 --> 00:57:36,100 You remember what you are doing yesterday if are at the name, so you can just get the name of the price 694 00:57:36,100 --> 00:57:41,440 of bread and then you add whatever is left you the move, the price of soda and then you have the total 695 00:57:41,440 --> 00:57:41,620 here. 696 00:57:42,610 --> 00:57:48,400 So by far from the outset, very important topics. 697 00:57:48,580 --> 00:57:57,700 If you have kids ready or you have prepared this for for the to show that to the audience, it will 698 00:57:57,700 --> 00:57:59,100 be much, much better than. 699 00:58:01,290 --> 00:58:03,210 I hope that the medics. 700 00:58:03,990 --> 00:58:16,060 Yeah, yeah, we saw we didn't know how to make formula or some or whatever multiply between Fields'. 701 00:58:19,050 --> 00:58:31,830 OK, so, yeah, so let's open up left if we can close it today at this point dystopic, OK, otherwise 702 00:58:31,830 --> 00:58:35,610 we will get back next time as you like to go. 703 00:58:35,930 --> 00:58:36,530 You go ahead. 704 00:58:36,660 --> 00:58:37,820 If you are ready, go ahead. 705 00:58:37,830 --> 00:58:39,780 If you don't, you are not ready. 706 00:58:40,290 --> 00:58:42,140 Will risk. 707 00:58:44,160 --> 00:58:51,360 OK, so about about the about this, once we are, I can I can do this, but we needed a page which 708 00:58:51,360 --> 00:58:57,570 has something some numbers we can add and so we can reschedule that for tomorrow. 709 00:58:58,260 --> 00:59:02,160 OK, we can look at we can look at this. 710 00:59:02,160 --> 00:59:04,560 We can do the arithmetic's in the subscription. 711 00:59:05,650 --> 00:59:07,080 Yeah, great. 712 00:59:07,870 --> 00:59:12,150 So today we finish number 12, right? 713 00:59:12,570 --> 00:59:16,330 Yes, yes, yes, number 12 is completed. 714 00:59:18,850 --> 00:59:27,130 Number 20, it is the introduction to Frumpies dialogue, API, dialogue, dialogue, beauty. 715 00:59:27,250 --> 00:59:29,630 You show yourself just now, right? 716 00:59:29,680 --> 00:59:30,490 This is dialogue. 717 00:59:31,720 --> 00:59:32,110 Yes. 718 00:59:32,590 --> 00:59:35,270 Is the same concept with with what we have been doing here. 719 00:59:35,290 --> 00:59:35,740 This one. 720 00:59:37,090 --> 00:59:39,510 It is one day I remember. 721 00:59:40,770 --> 00:59:46,300 Yeah, what what, what, what the dialogue is, for instance, now what is popping up here? 722 00:59:47,680 --> 00:59:53,220 This one, you may be correct, a number here, someone's phone number and then submit it. 723 00:59:53,220 --> 00:59:55,450 And it calls this for a week or so. 724 00:59:55,450 --> 00:59:59,350 It is it is just up to you if you write it here is going to do the same. 725 00:59:59,350 --> 01:00:06,610 If you put it take this function and put it put it here, here is going to do the same. 726 01:00:07,580 --> 01:00:20,210 OK, yeah, I suppose I want to catch all be you meter of a car, so I will press the button, take 727 01:00:20,210 --> 01:00:27,710 the audio meter, then I come by some logic and that's yeah, it will work like this. 728 01:00:29,510 --> 01:00:29,960 Yeah. 729 01:00:29,960 --> 01:00:31,430 OK, let's try and do so. 730 01:00:31,430 --> 01:00:32,410 We'll stop here. 731 01:00:33,350 --> 01:00:38,030 But so tomorrow, tomorrow we continue from 13 13. 732 01:00:38,060 --> 01:00:46,190 It will be ready tomorrow and we will work with 14 also we take 14 tomorrow, 13 and 14 tomorrow. 733 01:00:46,880 --> 01:00:47,180 OK, 734 01:00:51,260 --> 01:00:52,550 we'll stop here today. 735 01:00:52,560 --> 01:00:54,740 So guys, if you have any question. 736 01:00:58,280 --> 01:01:09,440 That's a good question from the audience, if you have a question first I had one question is not of 737 01:01:09,440 --> 01:01:12,470 today's topic, but two days ago, I should know. 738 01:01:12,800 --> 01:01:13,560 I should go ahead. 739 01:01:13,660 --> 01:01:13,960 Yes. 740 01:01:14,750 --> 01:01:23,180 So correct me if I can open the visual studio for the application and and that if you see the directory, 741 01:01:23,360 --> 01:01:29,570 we have library management folder and inside that library management and inside that, once again, 742 01:01:29,570 --> 01:01:30,740 library management. 743 01:01:31,470 --> 01:01:38,150 And so could you explain a little bit about this latest reading and what does it indicate? 744 01:01:40,460 --> 01:01:50,060 So the library management here is the name of the app, because if you look at this, we have we have 745 01:01:50,060 --> 01:01:54,670 three apps in our office directory, European Unstrapping Library Management. 746 01:01:55,070 --> 01:01:59,240 So this definitely this one is the name of the app, the second one. 747 01:02:00,840 --> 01:02:02,900 Sometimes it does not create. 748 01:02:02,900 --> 01:02:05,030 So I'm not exactly sure what that is. 749 01:02:06,690 --> 01:02:08,030 We can do that. 750 01:02:08,060 --> 01:02:14,660 I have props here that don't have these directories or maybe if someone knows, they can go ahead and 751 01:02:14,660 --> 01:02:15,140 tell us. 752 01:02:15,650 --> 01:02:18,520 And then this this one here is the name of the module. 753 01:02:19,280 --> 01:02:25,190 So if you go to the modules on the application, the library management module, you see is this one, 754 01:02:25,190 --> 01:02:29,600 is this this other, that library here, the library management of directory. 755 01:02:29,960 --> 01:02:35,210 And then you say that, of course now you have other dog types with all the names of those tapes we 756 01:02:35,260 --> 01:02:39,410 have created, and then each itself has all its files. 757 01:02:41,970 --> 01:02:47,400 I have an idea of what you are going to be next up. 758 01:02:48,590 --> 01:02:49,590 Yeah, yeah, 759 01:02:52,360 --> 01:02:53,060 yeah. 760 01:02:53,520 --> 01:02:57,570 So under the next, we create again here to be next. 761 01:02:58,700 --> 01:03:03,490 Yes, so similarly, there is an order here to be next. 762 01:03:03,530 --> 01:03:11,610 You have an agriculture buying all this are MADURESE accounts. 763 01:03:13,670 --> 01:03:17,540 Get a drill down into agriculture, open agriculture. 764 01:03:21,290 --> 01:03:22,320 Yeah, don't die. 765 01:03:26,070 --> 01:03:33,180 There is something called a domain domain, for example, agriculture, health care, distribution and 766 01:03:33,180 --> 01:03:36,340 retail are a domain in Phoenix. 767 01:03:36,360 --> 01:03:39,440 They call it the domain and they have modular. 768 01:03:39,720 --> 01:03:43,890 Again, they have merged and they have it's confusing. 769 01:03:43,890 --> 01:03:44,850 It's a valid question. 770 01:03:46,000 --> 01:03:51,690 It but sometimes they start from the end, from the bottom to the top. 771 01:03:53,010 --> 01:03:57,440 You mean, yeah, I the. 772 01:04:00,120 --> 01:04:06,240 So if I got you right, you mean Iraq is here, this is the Arab, this is the two men, this is the 773 01:04:06,240 --> 01:04:06,690 model. 774 01:04:08,080 --> 01:04:20,590 I'm not sure, I'm not sure, but I try to understand things by the sea out of the standard of the Frappier. 775 01:04:22,090 --> 01:04:30,820 So if I don't if I don't understand something, I go to the therapy work, I checked how they are doing 776 01:04:31,480 --> 01:04:31,580 it. 777 01:04:32,640 --> 01:04:33,360 Huh? 778 01:04:34,240 --> 01:04:40,440 He got so like this, so it's like this after next and there is gonna be next again. 779 01:04:41,810 --> 01:04:42,290 Mm hmm. 780 01:04:43,070 --> 01:04:48,210 So, yes, yes, yes. 781 01:04:48,670 --> 01:04:54,230 Yeah, well, the way I see it is that the first folder is really the app. 782 01:04:54,680 --> 01:05:01,910 Then underneath that is the whole content that is being comit into GitHub and within GitHub. 783 01:05:01,910 --> 01:05:08,180 There's I think there's some standard to have a folder for your app and then you have the rest of the 784 01:05:08,180 --> 01:05:12,470 file like the get in your and read me so. 785 01:05:13,730 --> 01:05:22,790 Well, I don't know the real reason, but in my head, that's why you have this name repeated there 786 01:05:22,790 --> 01:05:25,820 underneath the app folder. 787 01:05:28,670 --> 01:05:30,830 Yes, there is two levels. 788 01:05:31,370 --> 01:05:36,260 We can consider it as the first one and second one is is up. 789 01:05:36,710 --> 01:05:37,430 I think it is. 790 01:05:37,700 --> 01:05:44,060 Then you will find module library management, then you will find the alternate types and your other 791 01:05:44,510 --> 01:05:46,940 other stuff for for the module. 792 01:05:49,340 --> 01:05:49,880 Yes, 793 01:05:53,630 --> 01:06:05,800 I have a question regarding dog types being treated, if you create a field dog type field, there is 794 01:06:06,170 --> 01:06:07,660 only a checkbox. 795 01:06:10,280 --> 01:06:12,440 Yes, there is. 796 01:06:13,670 --> 01:06:16,410 OK, is it open dog type? 797 01:06:17,560 --> 01:06:20,690 Custom, custom, you ask them duct tape. 798 01:06:23,360 --> 01:06:24,300 Customize. 799 01:06:27,310 --> 01:06:32,590 Open, open and any any field in any field. 800 01:06:33,090 --> 01:06:33,300 Yes. 801 01:06:33,860 --> 01:06:36,900 So here you go down there is Read-Only Checkbook's. 802 01:06:37,210 --> 01:06:41,310 Look, yes, there is a feeling. 803 01:06:41,450 --> 01:06:43,340 I am feeling of quality. 804 01:06:43,340 --> 01:06:44,150 Down you go up. 805 01:06:46,510 --> 01:06:46,850 I'm. 806 01:06:48,660 --> 01:06:59,250 And in the time, there is only time, yes, they are seeing more they behave differently in the system. 807 01:07:01,780 --> 01:07:04,290 Where are you from a developer perspective? 808 01:07:04,320 --> 01:07:10,790 I think if you select this my thinking, I have noticed that it if you select it is if you make of field 809 01:07:10,800 --> 01:07:17,490 read-only, I think it's notable to not have a difference with someone else who said exists as data 810 01:07:17,850 --> 01:07:19,520 and then checks down here. 811 01:07:19,530 --> 01:07:27,220 Read-Only because I think I the idea that this just produces markup on your on your front end. 812 01:07:27,540 --> 01:07:30,770 So I think it is the same thing, but we can explore that to be sure. 813 01:07:33,290 --> 01:07:33,770 Yes. 814 01:07:35,700 --> 01:07:37,440 Yeah, yeah. 815 01:07:39,930 --> 01:07:42,630 So any another question. 816 01:07:46,850 --> 01:07:47,650 Is it clear? 817 01:07:57,700 --> 01:07:58,390 Atia. 818 01:08:00,640 --> 01:08:01,750 Yes, yes. 819 01:08:02,830 --> 01:08:08,220 Is it clear to allow the presentation material? 820 01:08:10,210 --> 01:08:14,080 Are you comfortable with the deal now? 821 01:08:15,070 --> 01:08:15,860 Yes, yes. 822 01:08:16,470 --> 01:08:17,060 OK. 823 01:08:17,220 --> 01:08:18,070 OK, fine. 824 01:08:22,240 --> 01:08:23,390 I'm Daniel McGlinn. 825 01:08:25,640 --> 01:08:32,480 And I still look into how to expect this guy to come here. 826 01:08:32,910 --> 01:08:36,760 Yes, sure, we will for sure. 827 01:08:36,770 --> 01:08:38,290 We will take these pictures. 828 01:08:40,500 --> 01:08:48,230 And I, I follow the steps that I work with. 829 01:08:50,780 --> 01:08:55,100 I follow the steps where I read the script 830 01:08:58,760 --> 01:09:03,710 and I had a folder type --. 831 01:09:03,830 --> 01:09:06,710 I don't have that in my in my mind. 832 01:09:08,800 --> 01:09:12,930 You create custom and you install it here, right? 833 01:09:13,350 --> 01:09:14,840 Yes, I answer that. 834 01:09:15,050 --> 01:09:18,290 And you do you create custom? 835 01:09:19,430 --> 01:09:19,930 Yes. 836 01:09:19,940 --> 01:09:21,500 Yes, I create a custom. 837 01:09:22,670 --> 01:09:25,700 So you create a custom library. 838 01:09:25,710 --> 01:09:28,020 Remember all this time you created. 839 01:09:28,040 --> 01:09:40,580 Yes, I create a custom doctype also I'm doing what I want is to bring another doctype from the customize. 840 01:09:44,090 --> 01:09:54,120 So it is I'm going to ask question your question now, you want to know what you did a minute ago, 841 01:09:54,380 --> 01:09:59,560 it's all right with the U.S., but just how to export this? 842 01:10:02,080 --> 01:10:09,700 This there's also stuff it there and our exporting. 843 01:10:10,490 --> 01:10:11,570 Yes, yes, yes. 844 01:10:12,180 --> 01:10:12,590 No, no. 845 01:10:12,590 --> 01:10:20,840 Actually, we have to take this topic and you will understand it very well and realize you spend a lot 846 01:10:20,840 --> 01:10:29,090 of time try trying to you will spend time in one of the purpose of this training. 847 01:10:29,090 --> 01:10:31,630 You will win time if you go alone. 848 01:10:31,790 --> 01:10:36,290 Yes, you will learn, but it will take time for from you. 849 01:10:36,440 --> 01:10:43,730 I don't know if you are one for the screen. 850 01:10:43,730 --> 01:10:51,440 Where did you stop at less and less and less. 851 01:10:52,010 --> 01:10:53,240 OK, ok. 852 01:10:53,340 --> 01:10:53,850 George. 853 01:11:08,550 --> 01:11:10,140 Yeah, the supplier is. 854 01:11:12,830 --> 01:11:23,450 You want to see the supply and, yes, supply of these conditions like we have, you know, no, the 855 01:11:23,460 --> 01:11:27,090 suppliers say are the U.S. not not the supplier. 856 01:11:27,350 --> 01:11:32,090 The other side, which is entry entry. 857 01:11:35,330 --> 01:11:49,420 And you know, all new suppliers here, they sit in the ensemble, the DOCTYPE, and that is. 858 01:11:52,040 --> 01:11:54,650 OK, Will. 859 01:11:55,790 --> 01:12:00,050 Where is it, our suppliers and. 860 01:12:02,670 --> 01:12:14,070 This one right now, all our customer, our customer, our customer supplier, customer means customer 861 01:12:14,190 --> 01:12:24,960 supplier, but there is another type called customized form we call customized for systemize for OK, 862 01:12:25,590 --> 01:12:33,690 so customer is for when you want when you want to customize standard for like supplier. 863 01:12:33,700 --> 01:12:42,620 In this case you have you have to go to customized for don't go to doctor and it'd be better if you 864 01:12:42,630 --> 01:12:44,950 have to do is build your customization. 865 01:12:45,150 --> 01:12:47,310 OK, which can continue like this. 866 01:12:47,660 --> 01:12:48,090 Yeah. 867 01:12:48,420 --> 01:12:53,460 So go to customize for your supplier. 868 01:12:54,750 --> 01:13:01,570 And here you will add or rename or whatever you want to do in like this. 869 01:13:03,240 --> 01:13:05,990 This is our testimony that you saw this custom tree. 870 01:13:06,060 --> 01:13:07,800 Yes, yes. 871 01:13:09,270 --> 01:13:13,200 You know, I've got to mention, it is just. 872 01:13:16,060 --> 01:13:20,740 This is just it's OK, David. 873 01:13:22,680 --> 01:13:32,880 I'm of updated is done then where we will find this customizer dot. 874 01:13:33,950 --> 01:13:35,430 Yes, yes. 875 01:13:37,810 --> 01:13:47,270 Well, export the customizations, this is the this one is Connacher Export, is it? 876 01:13:47,710 --> 01:13:48,570 Yes, yes. 877 01:13:49,390 --> 01:13:52,000 Klickitat this, uh. 878 01:13:54,600 --> 01:13:59,280 OK, we select our model library management. 879 01:14:00,560 --> 01:14:02,840 Is there an. 880 01:14:05,800 --> 01:14:07,030 Garani, you follow. 881 01:14:09,180 --> 01:14:10,260 Yes, yes, yes. 882 01:14:11,920 --> 01:14:13,600 So at it now. 883 01:14:14,460 --> 01:14:15,620 Yeah, they are correct, yes. 884 01:14:17,520 --> 01:14:29,880 So would when we submit, we shall find our customers that type in our application, that site. 885 01:14:31,340 --> 01:14:31,820 Oh, no. 886 01:14:32,780 --> 01:14:36,980 So what is the reason for of customization guaranteed? 887 01:14:37,610 --> 01:14:40,640 We thought it was close that. 888 01:14:41,620 --> 01:14:46,300 Clothes so they can sort of explode customizations, is to make sure that you can track your changes 889 01:14:46,300 --> 01:14:47,010 on GitHub. 890 01:14:47,620 --> 01:14:54,130 So if you look at the message that is staring you, customizations for supplier exported to the it is 891 01:14:54,130 --> 01:14:57,370 giving you the profile. 892 01:14:58,390 --> 01:14:58,690 Yeah. 893 01:14:59,020 --> 01:15:01,360 So that is just on file with that. 894 01:15:01,440 --> 01:15:03,300 The few to name that you are dead. 895 01:15:03,760 --> 01:15:06,660 Basically all the details of the name that you added. 896 01:15:07,300 --> 01:15:13,360 So those customizations will be on the on the standard, be on this the standard dog type of supplier, 897 01:15:13,710 --> 01:15:14,740 the supplier DOCTYPE. 898 01:15:18,070 --> 01:15:19,050 How yes. 899 01:15:20,290 --> 01:15:20,770 Come on. 900 01:15:21,070 --> 01:15:32,720 Because if I didn't, I'm saying I'm saying that you have added a field called commercial registry number. 901 01:15:33,280 --> 01:15:35,100 Yeah, come on, supermajorities. 902 01:15:35,140 --> 01:15:39,580 The number is supposed now to be available on you on your DOCTYPE. 903 01:15:40,000 --> 01:15:47,020 So if you go to supply DOCTYPE, you will find that, you will find out that that that that fieldtrip. 904 01:15:48,350 --> 01:15:48,600 Yes. 905 01:15:48,860 --> 01:15:50,220 Can we try to check and see? 906 01:15:50,960 --> 01:15:51,800 Yes, yes. 907 01:15:53,170 --> 01:15:57,890 I go to this line here, it's here. 908 01:16:00,260 --> 01:16:10,190 So when when when we update our our our application, you will love this customized. 909 01:16:11,180 --> 01:16:13,610 They say, no, it will not be lost. 910 01:16:14,270 --> 01:16:18,410 There is one way to not be lost is because are able to open court in any way. 911 01:16:19,750 --> 01:16:23,320 Yes, yes, so go to our library. 912 01:16:23,620 --> 01:16:34,570 I don't know where you exported, we should have let me see this exported here, see frontbench jobs 913 01:16:35,380 --> 01:16:36,850 and labor management. 914 01:16:38,700 --> 01:16:46,660 Once again, library management, library management, library management, three times, then cast-off. 915 01:16:50,050 --> 01:17:00,620 You may have to reload that, just go after that, but we have this update, Buspar update to you, 916 01:17:00,890 --> 01:17:01,250 that one. 917 01:17:01,280 --> 01:17:02,380 Yes, yes. 918 01:17:03,760 --> 01:17:07,300 So you everybody has done it. 919 01:17:08,380 --> 01:17:08,950 Yeah, yeah. 920 01:17:09,640 --> 01:17:09,890 Yeah. 921 01:17:09,910 --> 01:17:11,340 These are this is your custom food. 922 01:17:11,380 --> 01:17:15,030 So if you scroll down, you see the name, just scroll. 923 01:17:15,580 --> 01:17:16,380 It's a long one. 924 01:17:16,390 --> 01:17:17,860 Just try to find 925 01:17:20,470 --> 01:17:22,960 your little commercial registry. 926 01:17:23,630 --> 01:17:25,710 They are so small. 927 01:17:25,720 --> 01:17:32,580 So what do you do, Mohammed, when you when maybe you have updated and they want to see you, you just 928 01:17:32,620 --> 01:17:34,690 on the new app, you just run up. 929 01:17:34,840 --> 01:17:40,420 It would have been to my great sorry benchmark benchmark that it's going to migrate or you or your fields 930 01:17:41,110 --> 01:17:41,530 so. 931 01:17:46,820 --> 01:17:52,100 But this doctype in in my application, right? 932 01:17:53,150 --> 01:17:56,690 Yes, this is your application is management application. 933 01:17:57,200 --> 01:18:01,460 I thought an offer can be. 934 01:18:04,020 --> 01:18:08,630 Yes, this is go to the custody of Saddam. 935 01:18:10,590 --> 01:18:26,340 So we'll have we'll have when we when we do, we think besame great, we will have the under labor management 936 01:18:26,850 --> 01:18:29,620 doctype we'll have separate doctype. 937 01:18:30,510 --> 01:18:32,820 That's what you want to say. 938 01:18:34,290 --> 01:18:34,950 The current. 939 01:18:38,260 --> 01:18:39,310 I do not get your question. 940 01:18:42,510 --> 01:18:50,520 Uh, uh, uh, Ben Spygate, uh. 941 01:18:54,660 --> 01:19:02,840 So it's not like it was ransom or so it's of been said the Koran. 942 01:19:04,020 --> 01:19:04,410 Yep. 943 01:19:05,610 --> 01:19:10,550 So Benjamin Grade, you advised him to do it in the new instance, right? 944 01:19:13,240 --> 01:19:19,300 Yes, that's my greatest is is this is you can use it anyway, even if you have an application that 945 01:19:19,300 --> 01:19:25,300 has been existing to agree to just make sure that the fields you have all synched. 946 01:19:26,680 --> 01:19:31,440 Yes, so you can safely run Benchmade great. 947 01:19:32,650 --> 01:19:40,280 The full the full cycle will we're it again and get the process. 948 01:19:40,300 --> 01:19:42,000 It's an a topic. 949 01:19:42,380 --> 01:19:50,050 We'll show you how to customize our expert or move your development from one instance to another instance. 950 01:19:50,320 --> 01:19:54,880 In this case, you have added one field in supplier DOCTYPE. 951 01:19:55,360 --> 01:19:56,880 It's under labor. 952 01:19:56,930 --> 01:19:58,610 It is exported. 953 01:19:58,630 --> 01:20:03,960 And the liability customer it is it will not be overridden by next update. 954 01:20:04,600 --> 01:20:13,930 But the need to more is there is a to how GitHub is another story and get help when you have to push 955 01:20:13,930 --> 01:20:16,620 your code in your repository in. 956 01:20:16,630 --> 01:20:17,080 Giddap. 957 01:20:17,110 --> 01:20:18,100 Do you have any idea. 958 01:20:19,270 --> 01:20:21,250 Well of course, yeah. 959 01:20:21,400 --> 01:20:31,000 So to get the repository and you go to your production is this you need to do benchmark rate or. 960 01:20:31,360 --> 01:20:39,310 I don't know, I'm not sure I've got a better idea is you will pull this in your production and you 961 01:20:39,310 --> 01:20:40,400 do benchmark. 962 01:20:40,580 --> 01:20:45,340 Benchmark we will install changes in the production. 963 01:20:45,910 --> 01:20:57,190 So first you first you pull the changes from then Benchemsi, implement those changes in your database 964 01:20:57,640 --> 01:20:59,410 in the destination database. 965 01:21:00,660 --> 01:21:01,200 Very good. 966 01:21:02,160 --> 01:21:04,810 Yeah, OK, that's great. 967 01:21:05,280 --> 01:21:05,760 Thank you. 968 01:21:05,790 --> 01:21:10,740 Yeah, yeah, yeah, we would see this and we'd be in a bunch of topics. 969 01:21:12,490 --> 01:21:13,480 OK, thank you. 970 01:21:14,980 --> 01:21:17,050 OK, we will stop here. 971 01:21:17,080 --> 01:21:21,950 Thank you very much, ladies and gentlemen, for your presence. 972 01:21:22,930 --> 01:21:26,400 We shall meet tomorrow at same time, inshallah. 973 01:21:26,920 --> 01:21:28,900 Thank you so much. 974 01:21:29,440 --> 01:21:29,840 Thank you. 975 01:21:29,860 --> 01:21:30,370 Bye bye. 976 01:21:30,910 --> 01:21:31,450 Bye bye. 977 01:21:31,930 --> 01:21:32,770 I have a nice.